Einhugur Word Plugin for Xojo

Paragraph.Runs Method

Returns RunIterator for the runs in the paragraph. This function is for using with for each statements.

Runs() as EinhugurWord.RunIterator

Parameters

Returns

EinhugurWord.RunIterator

Remarks

Usage:


for each it as Run in para.Runs
    // Your code here
next



Note this method will only return runs. If wanting all items then use the ParagraphItems method instead which will give you Runs and Hyperlinks.


Iterators are not supported on Xojo 2019r1. You need newer Xojo to use Iterators.

See Also

Paragraph Class